home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / mac / files / t_sys5 / unixcpio.gz / unixnet.cpio / mac.h < prev    next >
C/C++ Source or Header  |  1994-07-11  |  447b  |  23 lines

  1. /* Asynch controller control block */
  2. #define MAX_STORE 1024
  3.  
  4. struct Store_input {
  5.     char *head;
  6.     char store[MAX_STORE];
  7.     char *tail;
  8.     int   amt;
  9. };
  10.  
  11. struct asy {
  12.     unsigned int speed;        /* Line speed */
  13.     int    portIn;
  14.     int portOut;
  15.     int    devopen;
  16.     char *tty;
  17.     char recv_buf[MAX_STORE];
  18.     char snd_buf[MAX_STORE];
  19. };
  20. extern struct asy asy[];
  21. extern unsigned nasy;        /* Actual number of asynch lines */
  22. #define    ASY_MAX    2        /* Two asynch ports on the MAC */
  23.